home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CDOS10.ARJ / STDTYPE.H < prev    next >
Text File  |  1992-07-07  |  647b  |  21 lines

  1. #if !defined (STDTYPE)            /* Prevents multiple declarations errors */
  2. #define STDTYPE
  3.  
  4. /*
  5.    Description : Standard type definitions.
  6. */
  7.  
  8.  
  9. /*----- Global Typedefs ---------------------------------------------------*/
  10.  
  11. typedef unsigned char        bool ;                        /* Boolean type */
  12.  
  13. typedef unsigned char        byte ;                               /* 0-255 */
  14. typedef unsigned int         word ;                             /* 0-65535 */
  15. typedef unsigned long int    dword ;                       /* 0-4294967295 */
  16.  
  17.  
  18. /*----- End Global Typedefs -----------------------------------------------*/
  19.  
  20. #endif
  21.